Test
h1 Heading
h2 Heading
Hello world! Let’s try some Math in \(\LaTeX\)
The roots of a quadratic equation in the form \(a x^2 + b x + c = 0\) are:
\[x = \frac{-b \pm \sqrt{b^2 - 4 a c}}{2a}\]Horizontal Rules
Emphasis
This is bold text
This is bold text
This is italic text
This is italic text
Strikethrough
Blockquotes
Blockquotes can also be nested…
…by using additional greater-than signs right next to each other…
…or with spaces between arrows.
Lists
Ordered
- Lorem ipsum dolor sit amet
- Consectetur adipiscing elit
-
Integer molestie lorem at massa
- You can use sequential numbers…
- …or keep all the numbers as
1.
Unordered
- Create a list by starting a line with
+
,-
, or*
- Sub-lists are made by indenting 2 spaces:
- Marker character change forces new list start:
- Ac tristique libero volutpat at
- Facilisis in pretium nisl aliquet
- Nulla volutpat aliquam velit
- Marker character change forces new list start:
- Very easy!
Code
Inline code
Indented code
// Some comments
line 1 of code
line 2 of code
line 3 of code
Block code “fences”
Sample text here...
Syntax highlighting in this case C++:
std::vector<int> a = {2, 4, 6, 8, 10};
std::cout << "One dimension example" << std::endl;
// Remember zero based indices in C++
for (size_t i = 0; i < a.size(); ++i) {
std::cout << a[i] << " "; // read access via index
a[i] = 2 * a[i] + 1; // modify via index
}
Tables
Option | Description |
---|---|
data | path to data files to supply the data that will be passed into templates. |
engine | engine to be used for processing templates. Handlebars is the default. |
ext | extension to be used for dest files. |
Table with aligned columns
Right | Center |
---|---|
data | path to data files to supply the data that will be passed into templates. |
engine | engine to be used for processing templates. Handlebars is the default. |
ext | extension to be used for dest files. |
Definition lists
- Term 1
-
Definition 1 with lazy continuation.
- Term 2 with inline markup
-
Definition 2
{ some code, part of Definition 2 }
Third paragraph of definition 2.